home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / reports.sql < prev    next >
Text File  |  2000-05-12  |  717b  |  19 lines

  1. /* RCSVER $Id: reports.sql,v 1.1 1999-06-08 15:51:37-05 randy CURRENT $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        reports.sql
  6. * Date:        06/05/1999
  7. * memo:        Randy Wood
  8. * Description:    Create the reports table. This table contains 
  9. *        report titles and pathnames.
  10. * Changes:
  11. ************************************************************************* */
  12. CREATE TABLE reports
  13. (
  14.     cat_num        NUMBER(38),    /* Category from report_cat table */
  15.     rep_name    VARCHAR2(30),    /* Report title */
  16.     rep_path    VARCHAR2(100),   /* Report path */
  17.         CONSTRAINT pk_reports PRIMARY KEY (cat_num, rep_name)
  18. );
  19.